/* RESET */
* {
  box-sizing: border-box;
}

/* BAZA */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  line-height: 1.5;
  background-color: rgb(211, 176, 89);

  /* Layout strony */
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

/* HEADER / FOOTER */
.header,
.footer {
  padding: 12px 16px;
  border-bottom: 1px solid #ddd;
}

.footer {
  border-top: 1px solid #ddd;
  border-bottom: none;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* NAWIGACJA */
.nav {
  display: flex;
  gap: 12px;
}

/* TREŚĆ */
.main {
  padding: 16px;
}

/* LINKI */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
